Python Python 3 Tips

01. Int to Str leading zeros

Reference Link

    no = 1234
    value = str(no).zfill(8)
    print(value)
    # "00001234"

#### This page will be updated from time to time.